home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 June
/
ccd0605.iso
/
Software
/
Freeware
/
Programare
/
highlight
/
highlight-W32GUI-2.2-10b-Setup.exe
/
{app}
/
src
/
mousehandler.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
2005-02-11
|
1KB
|
30 lines
/***************************************************************************
mousehandler.cpp - description
-------------------
begin : 11.02.2005
copyright : (C) 2005 by AndrΘ Simon
email : andre.simon1@gmx.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "mousehandler.h"
MouseEvtHandler::MouseEvtHandler(){}
void MouseEvtHandler::OnRightMouseDown(wxMouseEvent& event)
{
wxMessageBox("º");
// if we don't skip the event, the other event handlers won't get it:
// try commenting out this line and see what changes
event.Skip();
}